home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1996 #11 / CDD_11_96.ISO / demos / timelaps / devinter.dxr / 00029_down arrow.ls < prev    next >
Encoding:
Text File  |  1996-08-07  |  341 b   |  16 lines

  1. on mouseDown
  2.   global MaximumV
  3.   set stepSize to 1
  4.   repeat while the mouseDown
  5.     if the locV of sprite 2 <= MaximumV then
  6.       exit
  7.     end if
  8.     set the locV of sprite 2 to the locV of sprite 2 - stepSize
  9.     updateStage()
  10.     set stepSize to stepSize * 2
  11.     if stepSize > 64 then
  12.       set stepSize to 64
  13.     end if
  14.   end repeat
  15. end
  16.